github.com/golang/protobuf/proto.Buffer.idx (field)

17 uses

	github.com/golang/protobuf/proto (current package)
		buffer.go#L51: 	idx           int
		buffer.go#L89: 	b.idx = 0
		buffer.go#L95: 	b.idx = 0
		buffer.go#L105: 	return b.buf[b.idx:]
		buffer.go#L120: 	b.idx = len(b.buf)
		buffer.go#L190: 	v, n := protowire.ConsumeVarint(b.buf[b.idx:])
		buffer.go#L194: 	b.idx += n
		buffer.go#L218: 	v, n := protowire.ConsumeFixed32(b.buf[b.idx:])
		buffer.go#L222: 	b.idx += n
		buffer.go#L228: 	v, n := protowire.ConsumeFixed64(b.buf[b.idx:])
		buffer.go#L232: 	b.idx += n
		buffer.go#L240: 	v, n := protowire.ConsumeBytes(b.buf[b.idx:])
		buffer.go#L244: 	b.idx += n
		buffer.go#L254: 	v, n := protowire.ConsumeString(b.buf[b.idx:])
		buffer.go#L258: 	b.idx += n
		buffer.go#L277: 	v, n, err := consumeGroup(b.buf[b.idx:])
		buffer.go#L281: 	b.idx += n